home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-08-14 | 606 b | 40 lines | [TEXT/MPCC] |
- // Geometries.h
-
- #ifndef _GEOMETRIES_H_
- #define _GEOMETRIES_H_
-
- /*===========================================================================*\
- *
- * Types
- *
- \*===========================================================================*/
- typedef struct TextureRec {
- char fileName[32];
- long size;
- long dirty;
- TQ3StoragePixmap pixmap;
- TQ3ShaderObject shader;
- long on;
- } TextureRec;
-
-
- enum {
- iMarker = 1,
- iPoint,
- iLine,
- iPolyline,
- iTriangle,
- iPolygon,
- iGeneralPolygon,
- iTrigrid,
- iBox,
- iMesh,
- iNurbCurve,
- iNurbPatch
- } ;
-
-
- TQ3GroupObject BuildGeometry( short type ) ;
-
-
- #endif